home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / emscopy1.arc / EMSCOPY.DOC next >
Text File  |  1991-03-28  |  4KB  |  121 lines

  1.  
  2.  
  3.  
  4.                              EMSCOPY.EXE
  5.  
  6.                                 -by-
  7.  
  8.                             Brian J. Burke
  9.  
  10.  
  11.                              Version 1.1
  12.  
  13.  
  14.                             March 11, 1991
  15.  
  16.  
  17.  
  18.  
  19.     PREAMBLE:
  20.  
  21.     Have you ever used the DOS "diskcopy" command with a 3 1/2"
  22.     floppy disk or a 5 1/4" high density floppy?  You are forced
  23.     to swap disks several times to get the job done.  This is
  24.     because DOS is limited to 640K of RAM for program use.  A
  25.     360K floppy disk can be read in one pass because it fits
  26.     within the 640K limit.  But other disk sizes cannot be read
  27.     in one pass due to their larger size.  So you are forced to
  28.     play musical disks until all the data is transferred.  I
  29.     stopped using the diskcopy command because it was such a
  30.     hassle.
  31.  
  32.     I decided to write EMSCOPY.EXE to do what DOS does not -- read
  33.     any size floppy disk in ONE pass and copy it to a blank floppy.
  34.  
  35.     
  36.     DESCRIPTION:
  37.  
  38.     EMSCOPY.EXE is a replacement of the DOS "diskcopy" command.  A
  39.     source disk is read into EMS memory, which is then transferred 
  40.     to a blank disk.  Any size floppy disk will be copied in only 
  41.     one pass.  If there is no EMS memory, or not enough, the hard
  42.     drive will be used for the transfer.  The result will be an
  43.     EXACT duplicate of the original.  
  44.  
  45.   
  46.     LEGAL STUFF:
  47.  
  48.     This program is free-ware, part of the Public Domain.  You may
  49.     copy this program freely and use it free of charge.  Under NO
  50.     circumstances shall this program be sold or included as a part
  51.     of any sale.   
  52.  
  53.     This program is distributed as-is, with NO warranty of any kind.
  54.     Use at your own risk.  I have tested this program on various 80286,
  55.     80386, and 80486 based computers using MSDOS 3.01, 3.3, and 4.01
  56.     with no problems.  
  57.  
  58.     
  59.     REQUIREMENTS:
  60.  
  61.     **  An IBM AT or compatible computer.
  62.  
  63.     **  MSDOS 3.01 or greater.
  64.  
  65.     **  1.44 megabytes of free EMS memory OR
  66.         1.44 megabytes of free hard disk space.
  67.     
  68.     **  An EGA or VGA monitor.  I don't know if
  69.         this program will work with monochrome.  
  70.  
  71.  
  72.     USE:
  73.  
  74.     This program is very easy to use.  Just type EMSCOPY, and follow 
  75.     the directions.  You will be asked to insert the source disk and
  76.     enter the drive letter.  Only Drive A or B are supported.  The
  77.     disk will then be read, followed by an audible tone to signal
  78.     completion.  Next, insert the target disk and press a key.  The
  79.     disk will be written to make an exact duplicate of the original.
  80.  
  81.     Important:  The target disk must be a BLANK FORMATTED disk of the
  82.                 same size as the original.  If the target disk is not
  83.                 blank, has bad sectors, or is a different size, an
  84.                 error message will result.
  85.  
  86.     If DOS gives the message "Abort, Retry, Ignore" or "Abort, Retry,
  87.     Fail", DO NOT choose Abort.  Nothing terrible will happen if you
  88.     do choose Abort, but one of two things may result:
  89.  
  90.     1.  Some EMS memory may be locked-out and unavailable until you
  91.         re-boot.  This should not be a problem.  It will not affect
  92.         the operation of your computer or harm any program.
  93.    
  94.     2.  If the hard drive was being used for the transfer, a file
  95.         called "disk.dat" may be left behind.  You can erase it if
  96.         you want to.  It will be deleted the next time you run EMSCOPY.   
  97.  
  98.     It's best if you stick to "Retry" or "Ignore/Fail".
  99.  
  100.  
  101.     TECHNICAL NOTES:
  102.  
  103.     EMSCOPY was written with Borland's Turbo C 2.0.  For graphics and EMS
  104.     access, I used Mike Smedley's very useful CXL Extended Function Library.
  105.  
  106.     I would be very interested in hearing your comments, suggestions, etc.
  107.     You can contact me at:
  108.  
  109.                       Lakes Region BBS   708/872-8086
  110.  
  111.                                    -or-
  112.  
  113.                         Oak Lawn BBS   708/599-8089 
  114.  
  115.  
  116.     REVISION HISTORY:
  117.  
  118.     Version 1.1  --  Added option to re-run program. 
  119.  
  120.  
  121.